*** empty log message ***
authorStefan Monnier <monnier@iro.umontreal.ca>
Fri, 7 Jul 2006 15:26:26 +0000 (15:26 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Fri, 7 Jul 2006 15:26:26 +0000 (15:26 +0000)
lisp/ChangeLog
man/programs.texi

index c500f3d5a935852ece1f6a6b1d2655cfc3f5cf0c..c9c90a17248aa11778e39f98b90c04ca1c9d5778 100644 (file)
@@ -1,5 +1,8 @@
 2006-07-07  Stefan Monnier  <monnier@iro.umontreal.ca>
 
+       * progmodes/compile.el (compilation-error-regexp-alist-alist) <gnu>:
+       Use shy regexp.  Fix incorrect backref to potentially unmatched group.
+
        * dirtrack.el (dirtrack-default-directory-function): Remove.
        (dirtrack-directory-function): Use file-name-as-directory.
        (dirtrack-windows-directory-function): Simplify.
index 2e189bc1f1323576b7f8b521911348ba1f992bd8..70198ad1e991357f03d6ab4f023c54def65ef2fd 100644 (file)
@@ -949,13 +949,14 @@ comment delimiters to add or how many to delete.
 comments in certain contexts.  For example, in Lisp code, comments which
 start with two semicolons are indented as if they were lines of code,
 instead of at the comment column.  Comments which start with three
-semicolons are supposed to start at the left margin.  Emacs understands
+semicolons are supposed to start at the left margin and are often used
+for sectioning purposes.  Emacs understands
 these conventions by indenting a double-semicolon comment using @key{TAB},
 and by not changing the indentation of a triple-semicolon comment at all.
 
 @example
 ;; This function is just an example.
-;; Here either two or three semicolons are appropriate.
+;;; Here either two or three semicolons are appropriate.
 (defun foo (x)
 ;;;  And now, the first part of the function:
   ;; The following line adds one.